home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / J A V A / Java Development Kit V1.2 / jdk12-win32(1).exe / data1.cab / demos / demo / jfc / Java2D / CustomControls.java < prev    next >
Encoding:
Java Source  |  1998-12-01  |  718 b   |  24 lines

  1. /*
  2.  * @(#)CustomControls.java    1.2 98/09/13
  3.  *
  4.  * Copyright 1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  *
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15.  
  16. /**
  17.  * The interface for DemoSurface's that wish to add custom 
  18.  * controls to the DemoPanel.
  19.  */
  20. public interface CustomControls {
  21.         public String getCustomControlsConstraint();
  22.         public java.awt.Component getCustomControls();
  23. }
  24.